func sync/atomic.LoadInt64

5 uses

	sync/atomic (current package)
		doc_64.go#L86: func LoadInt64(addr *int64) (val int64)
		type.go#L106: func (x *Int64) Load() int64 { return LoadInt64(&x.v) }

	google.golang.org/grpc/internal/idle
		idle.go#L124: 		m.resetIdleTimer(time.Duration(atomic.LoadInt64(&m.lastCallEndTime)-time.Now().UnixNano()) + m.timeout)

	google.golang.org/grpc/internal/transport
		http2_client.go#L1731: 			lastRead := atomic.LoadInt64(&t.lastRead)
		http2_server.go#L1242: 			lastRead := atomic.LoadInt64(&t.lastRead)